home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / GNU_Backgammon / gnubg-MAIN-20110822-setup.exe / {app} / CleanupInstall.bat < prev    next >
DOS Batch File  |  2008-04-16  |  774b  |  29 lines

  1. @set gnubgprefdir=%1%\..\.gnubg
  2. @echo.
  3. @echo GNUbackgammon prefenence directory is supposed to be:
  4. @echo   %gnubgprefdir%
  5. @echo.
  6. @if exist %gnubgprefdir% goto found
  7. @echo GNUbackgammon preferences directory not found, nothing to delete.
  8. @goto :end
  9.   
  10. :found
  11. @echo ATTENTION: deleting the GNUbackgammon prefernce directory will delete
  12. @echo all your settings and all the eventual database files present.
  13. @echo.
  14. @set choice=
  15. @set /P choice="GNUbackgammon preferences directory found, delete it [y/n] ?"
  16. @echo.
  17. @if '%choice%'=='y' (
  18.   @rmdir /S /Q %gnubgprefdir%
  19.   @if not exist %gnubgprefdir% (
  20.     @echo GNUbackgammon preferences directory deleted.
  21.     @goto end
  22.   )
  23. )
  24. @echo GNUbackgammon preferences directory still present.
  25. :end
  26. @echo.
  27. @pause
  28. @cls
  29.